summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm.cpp
blob: 4bea995c6ab5e847846a0465fb0501748a822f7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later

#include <memory>

#include "core/core.h"
#include "core/hle/service/ptm/psm.h"
#include "core/hle/service/ptm/ptm.h"
#include "core/hle/service/ptm/ts.h"

namespace Service::PTM {

void InstallInterfaces(SM::ServiceManager& sm, Core::System& system) {
    std::make_shared<PSM>(system)->InstallAsService(sm);
    std::make_shared<TS>(system)->InstallAsService(sm);
}

} // namespace Service::PTM